Add chkdoc.
authorrobertl <robertl@f51c46e8-681c-474f-0cfe-069cfd0219fb>
Fri, 11 Jul 2003 04:51:43 +0000 (04:51 +0000)
committerrobertl <robertl@f51c46e8-681c-474f-0cfe-069cfd0219fb>
Fri, 11 Jul 2003 04:51:43 +0000 (04:51 +0000)
gpsbabel/chkdoc [new file with mode: 0755]

diff --git a/gpsbabel/chkdoc b/gpsbabel/chkdoc
new file mode 100755 (executable)
index 0000000..89c6aca
--- /dev/null
@@ -0,0 +1,11 @@
+
+./gpsbabel -^ |
+while read FMT
+do
+       set -- $FMT
+       TYPE=$1
+       grep -q $TYPE ~/src/babelweb/capabilities.html  || echo $TYPE is not documented in capabilities.html.
+       
+       grep -qi "^    $TYPE$" README || echo $TYPE is not documented in README.
+
+done